home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / terminal / term / extras / source / gtlayout-source.lha / LT_Refresh.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-24  |  525 b   |  30 lines

  1. /*  GadTools layout toolkit
  2. **
  3. **  Copyright © 1993-1995 by Olaf `Olsen' Barthel
  4. **  Freely distributable.
  5. */
  6.  
  7. #include "gtlayout_global.h"
  8.  
  9. VOID LIBENT
  10. LT_BeginRefresh(REG(a0) LayoutHandle *handle)
  11. {
  12.     if(handle)
  13.     {
  14.         GT_BeginRefresh(handle -> Window);
  15.  
  16.         LTP_DrawGroup(handle,handle -> TopGroup);
  17.     }
  18. }
  19.  
  20.  
  21. /*****************************************************************************/
  22.  
  23.  
  24. VOID LIBENT
  25. LT_EndRefresh(REG(a0) LayoutHandle *handle,REG(d0) BOOL complete)
  26. {
  27.     if(handle)
  28.         GT_EndRefresh(handle -> Window,complete);
  29. }
  30.